UNPKG

page-with

Version:

A library for usage example-driven in-browser testing of your own libraries.

19 lines (18 loc) 447 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.webpackConfig = void 0; const path = require("path"); exports.webpackConfig = { mode: 'development', target: 'web', entry: { main: 'DEFINED_LATER', }, output: { filename: 'main.[chunkhash].js', }, resolve: { modules: ['node_modules', path.resolve(process.cwd(), 'node_modules')], }, devtool: false, };