mirror of
https://gitee.com/dapppp/ruoyi-plus-vben5.git
synced 2026-03-08 07:31:09 +08:00
16 lines
283 B
TypeScript
16 lines
283 B
TypeScript
import { defineBuildConfig } from 'unbuild';
|
|
|
|
export default defineBuildConfig({
|
|
clean: true,
|
|
declaration: true,
|
|
entries: [
|
|
'src/index',
|
|
{
|
|
builder: 'mkdist',
|
|
input: './src/langs',
|
|
// loaders: ['postcss'],
|
|
outDir: './dist/langs',
|
|
},
|
|
],
|
|
});
|