8000 add support for publicPath option in webpack by Mischi · Pull Request #3136 · angular/angular-cli · GitHub
[go: up one dir, main page]

Skip to content

add support for publicPath option in webpack #3136

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
add publicPath to the config schema
  • Loading branch information
Mischi committed Nov 14, 2016
commit 1d6120f86a1915892a87d6f2f500a66b156f1e02
3 changes: 2 additions & 1 deletion packages/angular-cli/lib/config/schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ export interface CliConfig {
apps?: {
root?: string;
outDir?: string;
assets?: string;
publicPath?: string;
assets?: string[];
index?: string;
main?: string;
test?: string;
Expand Down
3 changes: 3 additions & 0 deletions packages/angular-cli/lib/config/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
"type": "string",
"default": "dist/"
},
"publicPath": {
"type": "string"
},
"assets": {
"fixme": true,
"type": "array",
Expand Down
0