mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-23 01:58:29 +00:00
Rename app.module.(server|browser).ts to app.(server|browser).module.ts. Fixes #1228.
This commit is contained in:
@@ -47,7 +47,7 @@ module.exports = (env) => {
|
||||
new webpack.optimize.UglifyJsPlugin(),
|
||||
new AotPlugin({
|
||||
tsConfigPath: './tsconfig.json',
|
||||
entryModule: path.join(__dirname, 'ClientApp/app/app.module.browser#AppModule'),
|
||||
entryModule: path.join(__dirname, 'ClientApp/app/app.browser.module#AppModule'),
|
||||
exclude: ['./**/*.server.ts']
|
||||
})
|
||||
])
|
||||
@@ -68,7 +68,7 @@ module.exports = (env) => {
|
||||
// Plugins that apply in production builds only
|
||||
new AotPlugin({
|
||||
tsConfigPath: './tsconfig.json',
|
||||
entryModule: path.join(__dirname, 'ClientApp/app/app.module.server#AppModule'),
|
||||
entryModule: path.join(__dirname, 'ClientApp/app/app.server.module#AppModule'),
|
||||
exclude: ['./**/*.browser.ts']
|
||||
})
|
||||
]),
|
||||
|
||||
Reference in New Issue
Block a user