-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Augment configuration with Websumé configs
- Loading branch information
1 parent
039ce3e
commit 1c72466
Showing
8 changed files
with
144 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,37 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="en-US"> | ||
<head> | ||
<meta charset="UTF-8"/> | ||
<!-- Basic metadata --> | ||
<meta charset="UTF-8" /> | ||
<meta http-equiv="Content-Type" content="text/html"/> | ||
<base target="_blank" href="/" /> | ||
|
||
<!-- Metadata for specific clients --> | ||
<link rel="robots" type="text/plain" href="/robots.txt" /> | ||
<!-- <link rel="manifest" type="application/manifest+json" href="/manifest.webmanifest" /> --> | ||
|
||
<!-- Icons --> | ||
<!-- <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> --> | ||
<link rel="icon" type="image/x-icon" href="/favicon.ico" /><!-- For browsers without SVG favicon support, like Safari and various deprecated browsers. --> | ||
<!-- <link rel="mask-icon" type="image/svg+xml" href="/favmask.svg" color="#777"/>For pinned tabs in Safari. --> | ||
<!-- <link rel="apple-touch-icon" href="/apple-touch-icon.png" />NOTE: If we want the utmost quality for Apple devices, we need to add multiple resolutions, not just the default 180x180px. --> | ||
|
||
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" /> | ||
<meta name="background-color" content="#fff" /> | ||
<!-- Theming --> | ||
<meta name="theme-color" content="#000" /> | ||
<meta name="background-color" content="#fff" /> | ||
<meta name="viewport" content="width=device-width,initial-scale=1.0" /> | ||
|
||
<!-- About --> | ||
<title>Color Tools</title> | ||
<meta description="Some tools to help people manipulate colors for use in UI applications."/> | ||
<meta keywords="color, Lab, L*a*b*, CIELAB, CIEDE2000, RGB, WCAG, AA, AAA, accessibility"/> | ||
<meta author="Miles Bradley Huff"/> | ||
<link rel="author" type="text/plain" href="/humans.txt" /> | ||
|
||
<!-- Dependencies --> | ||
<script type="module" src="/src/main.ts"></script> | ||
</head> | ||
|
||
<body id="vue"></body> | ||
<body id="vue"> | ||
<noscript>This website requires JavaScript.</noscript> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/* SITE */ | ||
Language: English | ||
License: All Rights Reserved. | ||
GitHub: https://github.com/MilesBHuff/Websume | ||
|
||
/* TEAM */ | ||
Lead Developer: Miles Bradley Huff | ||
Email: [email protected] | ||
From: United States of America |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
User-agent: * | ||
Disallow: / |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<urlset | ||
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation=" | ||
http://www.sitemaps.org/schemas/sitemap/0.9 | ||
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd | ||
" | ||
> | ||
<url> | ||
<loc>http://localhost:5173/index.html</loc> | ||
</url> | ||
</urlset> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,38 @@ | ||
{ | ||
"name": "miles-color-tools", | ||
"license": "LAGPL-3.0-or-later", | ||
"name": "color-tools", | ||
"version": "3.0.0", | ||
"license": "LAGPL-3.0-or-later", | ||
"description": "Some tools to help people manipulate colors for use in UI applications.", | ||
"keywords": [ | ||
"color", | ||
"Lab", | ||
"L*a*b*", | ||
"CIELAB", | ||
"CIEDE2000", | ||
"RGB", | ||
"WCAG", | ||
"AA", | ||
"AAA", | ||
"accessibility" | ||
], | ||
"author": { | ||
"name": "Miles B Huff", | ||
"email": "[email protected]" | ||
}, | ||
"homepage": "HTTPS://GitHub.com/MilesBHuff/color-tools#README", | ||
"bugs": { | ||
"url": "HTTPS://GitHub.com/MilesBHuff/color-tools/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+HTTPS://GitHub.com/MilesBHuff/color-tools.git" | ||
}, | ||
"private": true, | ||
"directories": { | ||
"bin": "./dist", | ||
"lib": "./app" | ||
}, | ||
"type": "module", | ||
"scripts": { | ||
"start": "npm run dev", | ||
"dev": "vite", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,34 @@ | ||
import {fileURLToPath, URL} from 'node:url' | ||
import {defineConfig} from 'vite' | ||
import vue from '@vitejs/plugin-vue' | ||
import vueJsx from '@vitejs/plugin-vue-jsx' | ||
import vue from '@vitejs/plugin-vue'; | ||
import vueJsx from '@vitejs/plugin-vue-jsx'; | ||
import {fileURLToPath, URL} from 'node:url'; | ||
import {defineConfig} from 'vite'; | ||
|
||
// https://vitejs.dev/config | ||
//////////////////////////////////////////////////////////////////////////////// | ||
/** https://vitejs.dev/config */ | ||
export default defineConfig({ | ||
plugins: [vue(), vueJsx()], | ||
root: 'app', | ||
|
||
build: { | ||
outDir: '../dist', | ||
rollupOptions: { | ||
input: { | ||
app: 'src/index.html', | ||
}, | ||
}, | ||
sourcemap: true, | ||
}, | ||
server: { | ||
open: false, | ||
}, | ||
|
||
resolve: { | ||
alias: { | ||
'$/': fileURLToPath(new URL('./src/', import.meta.url)), | ||
'#/': fileURLToPath(new URL('./node_modules/', import.meta.url)), | ||
'@': fileURLToPath(new URL('./app/src', import.meta.url)), | ||
}, | ||
}, | ||
|
||
plugins: [ | ||
vue(), | ||
vueJsx(), | ||
], | ||
}); |