mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-06 12:57:46 +00:00
* Add API for frameworks and examples * Adjust headers * Update frameworks list * Always use latest * Add types * Use now repo for downloading and listing * Use .existsSync * Remove unused packages * Use 307 for redirect * Add examples * Update tsconfig.json Co-Authored-By: Steven <steven@ceriously.com> * Make examples unique * Remove detectors from frameworks API * Use /api instead of Next.js * Install dependencies * Rename project * Change name * Empty * Change name * Update api/tsconfig.json Co-Authored-By: Steven <steven@ceriously.com> * Update examples Co-authored-by: Steven <steven@ceriously.com>
78 lines
2.0 KiB
JavaScript
78 lines
2.0 KiB
JavaScript
const webpack = require('webpack');
|
|
const path = require('path');
|
|
const config = require('sapper/config/webpack.js');
|
|
const pkg = require('./package.json');
|
|
|
|
const mode = process.env.NODE_ENV;
|
|
const dev = mode === 'development';
|
|
|
|
const alias = { svelte: path.resolve('node_modules', 'svelte') };
|
|
const extensions = ['.mjs', '.js', '.json', '.svelte', '.html'];
|
|
const mainFields = ['svelte', 'module', 'browser', 'main'];
|
|
|
|
module.exports = {
|
|
client: {
|
|
entry: config.client.entry(),
|
|
output: config.client.output(),
|
|
resolve: { alias, extensions, mainFields },
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.(svelte|html)$/,
|
|
use: {
|
|
loader: 'svelte-loader',
|
|
options: {
|
|
dev,
|
|
hydratable: true,
|
|
hotReload: false, // pending https://github.com/sveltejs/svelte/issues/2377
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
mode,
|
|
plugins: [
|
|
// pending https://github.com/sveltejs/svelte/issues/2377
|
|
// dev && new webpack.HotModuleReplacementPlugin(),
|
|
new webpack.DefinePlugin({
|
|
'process.browser': true,
|
|
'process.env.NODE_ENV': JSON.stringify(mode),
|
|
}),
|
|
].filter(Boolean),
|
|
devtool: dev && 'inline-source-map',
|
|
},
|
|
|
|
server: {
|
|
entry: config.server.entry(),
|
|
output: config.server.output(),
|
|
target: 'node',
|
|
resolve: { alias, extensions, mainFields },
|
|
externals: Object.keys(pkg.dependencies).concat('encoding'),
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.(svelte|html)$/,
|
|
use: {
|
|
loader: 'svelte-loader',
|
|
options: {
|
|
css: false,
|
|
generate: 'ssr',
|
|
dev,
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
mode: process.env.NODE_ENV,
|
|
performance: {
|
|
hints: false, // it doesn't matter if server.js is large
|
|
},
|
|
},
|
|
|
|
serviceworker: {
|
|
entry: config.serviceworker.entry(),
|
|
output: config.serviceworker.output(),
|
|
mode: process.env.NODE_ENV,
|
|
},
|
|
};
|