UNPKG

vue-swipeable-bottom-sheet

Version:

![NPM](https://nodei.co/npm/vue-swipeable-bottom-sheet.png) [![license](https://img.shields.io/github/license/mashape/apistatus.svg?style=flat-square)](https://github.com/atsutopia/vue-swipeable-bottom-sheet)

20 lines (15 loc) 408 B
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;