UNPKG

322 BJavaScriptView Raw
1const path = require('path');
2
3module.exports = {
4 entry: 'src/index.jsx',
5 publicPath: './',
6 alias: {
7 '@': path.resolve(__dirname, './src'),
8 },
9 plugins: [
10 ['ice-plugin-fusion', {
11 themePackage: '@icedesign/theme',
12 }],
13 ['ice-plugin-moment-locales', {
14 locales: ['zh-cn'],
15 }],
16 ],
17};