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/doc-viewer/project.json

61 lines
1.7 KiB

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