remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
remix-project/apps/docviewer/project.json

59 lines
1.6 KiB

{
"name": "docviewer",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/docviewer/src",
"projectType": "application",
"implicitDependencies": [
],
"targets": {
"build": {
"executor": "@nrwl/webpack:webpack",
"outputs": ["{options.outputPath}"],
"defaultConfiguration": "development",
"options": {
"compiler": "babel",
"outputPath": "dist/apps/docviewer",
"index": "apps/docviewer/src/index.html",
"baseHref": "/",
"main": "apps/docviewer/src/main.tsx",
"tsConfig": "apps/docviewer/tsconfig.app.json",
"assets": [
"apps/docviewer/src/favicon.ico"
],
"styles": [],
"scripts": [],
"webpackConfig": "apps/docviewer/webpack.config.js"
},
"configurations": {
"development": {
},
"production": {
"fileReplacements": [
{
"replace": "apps/docviewer/src/environments/environment.ts",
"with": "apps/docviewer/src/environments/environment.prod.ts"
}
]
}
}
},
"serve": {
"executor": "@nrwl/webpack:dev-server",
"defaultConfiguration": "development",
"options": {
"buildTarget": "docviewer:build",
"hmr": true
},
"configurations": {
"development": {
"buildTarget": "docviewer:build:development",
"port": 7003
},
"production": {
"buildTarget": "docviewer:build:production"
}
}
}
},
"tags": []
}