diff options
author | Yukai Huang | 2016-10-09 21:47:29 +0800 |
---|---|---|
committer | Yukai Huang | 2016-10-10 07:58:42 +0800 |
commit | 70c20aaddaff75c3d0b7eb0fd53da13bb5651387 (patch) | |
tree | db9fe4f17a5739d967959c75d7c529429114ea66 /public | |
parent | a25889788443556703cf1f9b412b5d6dbf90febd (diff) |
Remove redundant entry point
Diffstat (limited to 'public')
-rw-r--r-- | public/js/app.js | 1 | ||||
-rw-r--r-- | public/views/foot.ejs | 2 | ||||
-rw-r--r-- | public/views/head.ejs | 2 | ||||
-rw-r--r-- | public/views/pretty.ejs | 2 |
4 files changed, 3 insertions, 4 deletions
diff --git a/public/js/app.js b/public/js/app.js deleted file mode 100644 index fe864504..00000000 --- a/public/js/app.js +++ /dev/null @@ -1 +0,0 @@ -require('./index'); diff --git a/public/views/foot.ejs b/public/views/foot.ejs index 7103b323..150214f4 100644 --- a/public/views/foot.ejs +++ b/public/views/foot.ejs @@ -31,7 +31,7 @@ <script src="<%- url %>/vendor/codemirror-spell-checker/spell-checker.min.js" defer></script> <script src="<%- url %>/vendor/ot/ot.min.js" defer></script> <script src="<%- url %>/vendor/xss/dist/xss.min.js" defer></script> -<script src="<%- url %>/build/app.js" defer></script> +<script src="<%- url %>/build/index.js" defer></script> <script src="<%- url %>/js/google-drive-upload.js" defer></script> <script src="<%- url %>/js/google-drive-picker.js" defer></script> <script src="<%- url %>/js/reveal-markdown.js" defer></script> diff --git a/public/views/head.ejs b/public/views/head.ejs index 2aa85689..72434892 100644 --- a/public/views/head.ejs +++ b/public/views/head.ejs @@ -36,7 +36,7 @@ <link rel="stylesheet" href="<%- url %>/vendor/showup/showup.css"> <link rel="stylesheet" href="<%- url %>/css/mermaid.css"> <link rel="stylesheet" href="<%- url %>/css/markdown.css"> -<link rel="stylesheet" href="<%- url %>/build/app.css"> +<link rel="stylesheet" href="<%- url %>/build/index.css"> <link rel="stylesheet" href="<%- url %>/css/index.css"> <link rel="stylesheet" href="<%- url %>/css/extra.css"> <link rel="stylesheet" href="<%- url %>/css/slide-preview.css"> diff --git a/public/views/pretty.ejs b/public/views/pretty.ejs index 02908817..6b1096bb 100644 --- a/public/views/pretty.ejs +++ b/public/views/pretty.ejs @@ -35,7 +35,7 @@ <link rel="stylesheet" href='<%- url %>/css/extra.css'> <link rel="stylesheet" href="<%- url %>/css/slide-preview.css"> <link rel="stylesheet" href='<%- url %>/css/site.css'> - <link rel="stylesheet" href='<%- url %>/build/app.css'> + <link rel="stylesheet" href='<%- url %>/build/public.css'> <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> |