Skip to content
This repository was archived by the owner on Apr 8, 2020. It is now read-only.

Commit 4492d3e

Browse files
In Angular template, rename boot.client.ts to boot.browser.ts for consistency
1 parent efdfbf5 commit 4492d3e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

templates/AngularSpa/webpack.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ module.exports = (env) => {
2929
// Configuration for client-side bundle suitable for running in browsers
3030
const clientBundleOutputDir = './wwwroot/dist';
3131
const clientBundleConfig = merge(sharedConfig, {
32-
entry: { 'main-client': './ClientApp/boot.client.ts' },
32+
entry: { 'main-client': './ClientApp/boot.browser.ts' },
3333
output: { path: path.join(__dirname, clientBundleOutputDir) },
3434
plugins: [
3535
new webpack.DllReferencePlugin({
@@ -69,7 +69,7 @@ module.exports = (env) => {
6969
new AotPlugin({
7070
tsConfigPath: './tsconfig.json',
7171
entryModule: path.join(__dirname, 'ClientApp/app/app.module.server#AppModule'),
72-
exclude: ['./**/*.client.ts']
72+
exclude: ['./**/*.browser.ts']
7373
})
7474
]),
7575
output: {

0 commit comments

Comments
 (0)