昆仑组装应用引擎生产组件脚手架的辅助插件,自动为指定产物文件添加导入 CSS
文件语句, 如: import './style.css'
。
npm install @klweb/chunk-import-style -D
import { defineConfig } from 'vite'
import ViteChunkImportStyle from '@klweb/chunk-import-style'
export default defineConfig({
// ...
plugins: [
ViteChunkImportStyle({
outDir: './src/engine-core/vendor', // 产物编译后的输出目录
styleFile: 'style.css', // 样式文件名称
effectFiles: ['index.mjs'] // 要作用的文件名称
})
]
})