mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
12 lines
284 B
JavaScript
12 lines
284 B
JavaScript
const common = require('./webpack.common');
|
|
const { merge } = require('webpack-merge');
|
|
const path = require('path');
|
|
const sourcePath = path.join(__dirname, '../src');
|
|
|
|
module.exports = merge(common, {
|
|
watch: true,
|
|
entry: {
|
|
index: path.join(sourcePath, 'index.ts'),
|
|
},
|
|
});
|