vue-swipeable-bottom-sheet
Version:
 [](https://github.com/atsutopia/vue-swipeable-bottom-sheet)
20 lines (15 loc) • 408 B
JavaScript
const {resolve} = require('path');
const options = require('./webpack.config');
options.mode = 'development';
options.entry = './example/';
options.output.filename = 'example.js';
options.output.libraryTarget = 'var';
options.output.publicPath = "/dist";
options.devServer = {
contentBase: [
resolve(__dirname, "example"),
],
host: "0.0.0.0",
publicPath: "/dist"
};
module.exports = options;