Closed transtone closed 3 years ago
如果在 vite.config.js 中设置了 base,
vite.config.js
base
export default defineConfig({ base: `/pc-base`, })
则无法调用此插件。显示 http://localhost:3000/init-dayjs-vite-plugin-entry.js 404 not found
http://localhost:3000/init-dayjs-vite-plugin-entry.js 404 not found
因为此时的正确路径应该是 http://localhost:3000/pc-base/init-dayjs-vite-plugin-entry.js
http://localhost:3000/pc-base/init-dayjs-vite-plugin-entry.js
https://github.com/nekocode/antd-dayjs-vite-plugin/blob/main/src/index.ts#L39
这里是不是要调整一下?
在 webpack 下用 antd-dayjs-webpack-plugin 是不需要设置,但使用正常不报错的。
antd-dayjs-webpack-plugin
嗯,感谢反馈!今天上午我解决一下
@transtone 可以帮忙测试一下 1.1.2 版本是否解决了这个问题么?
1.1.2
1.1.2 可以用。
@transtone 谢谢🙏
如果在
vite.config.js
中设置了base
,则无法调用此插件。显示
http://localhost:3000/init-dayjs-vite-plugin-entry.js 404 not found
因为此时的正确路径应该是
http://localhost:3000/pc-base/init-dayjs-vite-plugin-entry.js
https://github.com/nekocode/antd-dayjs-vite-plugin/blob/main/src/index.ts#L39
这里是不是要调整一下?
在 webpack 下用
antd-dayjs-webpack-plugin
是不需要设置,但使用正常不报错的。