我正在使用Svelte和材料设计库 Svelte Material UI 进行项目。
此材料设计库需要SASS,因此我用npm install svelte-preprocess
安装了预处理器,并在rollup.config.js中添加了preprocess: autoPreprocess()
。所以我现在有:
plugins: [
svelte({
// enable run-time checks when not in production
dev: !production,
// we'll extract any component CSS out into
// a separate file - better for performance
css: css => {
css.write('public/build/bundle.css');
},
preprocess: autoPreprocess()
}),
routify({ singleBuild : true}),
replace({
// stringify the object
APPENV: JSON.stringify({
isProd: production,
...config().parsed // attached the .env config
}),
}),
// more stuff
]
我有一个文件smui.js
,内容如下:
import Button from '@smui/button';
import Checkbox from '@smui/checkbox';
import Chips from '@smui/chips';
import Dialog from '@smui/dialog';
import FormField from '@smui/form-field';
import Select from '@smui/select';
export {
Button,
Checkbox,
Chips,
Dialog,
FormField,
Select
}
在我的index.svelt
e文件中,我是这样导入上述内容的:import * as Smui from "../smui.js";
。
我得到以下消息,而不是带有应在其上运行应用程序的端口的成功消息:
[!] Error: Unexpected character '@' (Note that you need plugins to import files that are not JavaScript)
node_modules\@smui\dialog\_index.scss (1:0)
1: @import "smui-theme";
^
2: @import "./style";
Error: Unexpected character '@' (Note that you need plugins to import files that are not JavaScript)
我在做什么错了?
答案 0 :(得分:2)
我遇到了同样的问题,并且设法用rollup-plugin-postcss
插件解决了这个问题。使用以下代码更新rollup.config.js
,并且您的一个sass目录中应该有_smui-theme.scss
。
import postcss from 'rollup-plugin-postcss'
...
plugins: [
svelte({
// enable run-time checks when not in production
dev: !production,
// we'll extract any component CSS out into
// a separate file - better for performance
css: css => {
css.write('public/build/bundle.css')
}
}),
postcss({
extensions: ['.css'],
extract: true,
minimize: true,
use: [['sass', { includePaths: ['./src/(yoursass-directory-name)', './node_modules'] }]]
})
答案 1 :(得分:0)
我从没有使用@import从NPM包中导入组件,但是在自述包中,它建议使用'import from from'svelte-material'。还请注意,svelte-preprocess不会被您引用的软件包支持,请查看自述文件:
要将其捆绑在您自己的代码中,请使用Sass处理器(不是Sass Svelte预处理器,而是Sass处理器)。