mirror of
https://github.com/kevin-DL/sapper-template.git
synced 2026-01-14 03:04:40 +00:00
9 lines
246 B
JavaScript
9 lines
246 B
JavaScript
const path = require('path');
|
|
const config = require('sapper/webpack/config.js');
|
|
const webpack = require('webpack');
|
|
|
|
module.exports = {
|
|
entry: config.serviceworker.entry(),
|
|
output: config.serviceworker.output(),
|
|
mode: process.env.NODE_ENV
|
|
}; |