Skip to content
This repository was archived by the owner on Nov 22, 2023. It is now read-only.

Commit c59810a

Browse files
committed
Restructure to use full URLs on Netlify, move static assets into public
1 parent 136230f commit c59810a

File tree

11 files changed

+27
-17
lines changed

11 files changed

+27
-17
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,8 @@ Thanks for considering contributing! Please open an issue prior to submitting an
2121
## License
2222

2323
This project is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
24+
25+
---
26+
27+
*Cross-Device Testing Provided By* <br>
28+
[<img src="https://www.browserstack.com/images/layout/browserstack-logo-600x315.png" width="128" alt="BrowserStack logo">](http://browserstack.com)

build/webpack.prod.conf.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@ const webpackConfig = merge(baseWebpackConfig, {
115115
// copy custom static assets
116116
new CopyWebpackPlugin([
117117
{
118-
from: path.resolve(__dirname, '../static'),
118+
from: path.resolve(__dirname, '../public'),
119119
to: config.build.assetsSubDirectory,
120-
ignore: ['.*']
120+
ignore: ['index.html']
121121
}
122122
])
123123
]

config/index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ module.exports = {
4444
},
4545
build: {
4646
// Template for index.html
47-
index: path.resolve(__dirname, '../../canitext911.us-dist/index.html'),
47+
index: path.resolve(__dirname, '../dist/index.html'),
4848

4949
// Paths
50-
assetsRoot: path.resolve(__dirname, '../../canitext911.us-dist'),
51-
assetsSubDirectory: 'assets',
50+
assetsRoot: path.resolve(__dirname, '../dist/'),
51+
assetsSubDirectory: '',
5252
assetsPublicPath: '/',
5353

5454
/**

package.json

+6-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "canitext911.us",
33
"version": "1.0.0",
4-
"description": "A Vue.js project",
5-
"author": "Sheng-Liang Slogar <slogar.sheng@gmail.com>",
4+
"description": "",
5+
"author": "Sheng-Liang Slogar <sheng@diglactic.com>",
66
"private": true,
77
"scripts": {
88
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
@@ -13,12 +13,6 @@
1313
"fix": "eslint --ext .js,.vue src test/unit --fix",
1414
"build": "node build/build.js"
1515
},
16-
"dependencies": {
17-
"date-fns": "^1.29.0",
18-
"vue": "^2.6.11",
19-
"vue-meta": "^1.5.6",
20-
"vue-router": "^3.1.6"
21-
},
2216
"devDependencies": {
2317
"autoprefixer": "^7.1.2",
2418
"babel-core": "^6.22.1",
@@ -36,6 +30,7 @@
3630
"chalk": "^2.0.1",
3731
"copy-webpack-plugin": "^4.0.1",
3832
"css-loader": "^0.28.0",
33+
"date-fns": "^1.29.0",
3934
"eslint": "^4.15.0",
4035
"eslint-config-airbnb-base": "^11.3.0",
4136
"eslint-friendly-formatter": "^3.0.0",
@@ -63,10 +58,13 @@
6358
"shelljs": "^0.7.6",
6459
"uglifyjs-webpack-plugin": "^1.1.1",
6560
"url-loader": "^0.5.8",
61+
"vue": "^2.6.11",
6662
"vue-jest": "^1.0.2",
6763
"vue-loader": "^13.3.0",
64+
"vue-meta": "^1.5.6",
6865
"vue-style-loader": "^3.0.1",
6966
"vue-template-compiler": "^2.6.11",
67+
"vue-router": "^3.1.6",
7068
"webpack": "^3.6.0",
7169
"webpack-bundle-analyzer": "^2.9.0",
7270
"webpack-dev-server": "^2.9.1",
File renamed without changes.
File renamed without changes.

public/index.html

+4-3
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,19 @@
66
<meta name="viewport" content="width=device-width,initial-scale=1.0">
77
<title>Can I Text 911 - United States</title>
88
<link rel="shortcut icon" href="/assets/favicon.ico">
9+
<meta property="description" content="Find out if text-to-911 is supported in your area.">
910
<meta name="og:title" content="Can I Text 911?">
1011
<meta name="twitter:card" content="summary_large_image">
1112
<meta property="og:title" content="Text 911 - United States">
1213
<meta property="og:description" content="Find out if text-to-911 is supported in your area.">
13-
<meta property="og:image" content="https://canitext911.us/assets/og-img.png">
14-
<link href="https://fonts.googleapis.com/css?family=Oxygen|Material+Icons" rel="stylesheet">
14+
<meta property="og:image" content="https://canitext911.us/img/og-img.png">
15+
<link href="//fonts.googleapis.com/css?family=Oxygen|Material+Icons" rel="stylesheet">
1516
</head>
1617
<body>
1718
<noscript>
1819
<strong>Please enable JavaScript to use this site.</strong>
1920
</noscript>
2021
<div id="app"></div>
21-
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-130662794-1"></script>
22+
<script async src="//googletagmanager.com/gtag/js?id=UA-130662794-1"></script>
2223
</body>
2324
</html>

public/netlify.toml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[[redirects]]
2+
from = "/*"
3+
to = "/index.html"
4+
status = 200

src/router/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Vue.use(Meta);
1616

1717
const router = new Router({
1818
linkActiveClass: 'cit-link--active',
19+
mode: 'history',
1920
routes: [
2021
{
2122
path: '/',

src/views/Faq/FaqIndex.vue

+2-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@
5151
target="_blank">
5252
Diglactic
5353
</a>
54-
and is not affiliated with any government entity. Our hope is to raise awareness and increase public safety.
54+
and is not affiliated with any government entity. Our hope is to raise awareness and increase
55+
public safety.
5556
</p>
5657
<p>
5758
We're open-source!

static/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)