Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions demo/lib/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ const SidebarHeader = ({ toggleSidebar }: { toggleSidebar: () => void }) => (
>
<Box sx={{ display: "flex", alignItems: "center" }}>
<img
src="https://tools.latticeautomation.com/seqviz/seqviz-logo.png"
src="https://seqviz.latticeautomation.com/seqviz-logo.png"
alt="SeqViz"
style={{ height: "36px", marginRight: "16px" }}
/>
Expand All @@ -503,7 +503,7 @@ const SidebarFooter = () => (
>
<Divider sx={{ mb: 2 }} />
<img
src="https://tools.latticeautomation.com/seqviz/lattice-brand.png"
src="https://seqviz.latticeautomation.com/lattice-brand.png"
alt="Lattice Automation"
style={{ height: "64px", margin: "0 auto 8px auto" }}
/>
Expand Down
2 changes: 1 addition & 1 deletion demo/lib/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const Header: React.FC<HeaderProps> = ({

<Box sx={{ pl: 2 }}>
<img
src="https://tools.latticeautomation.com/seqviz/seqviz-logo.png"
src="https://seqviz.latticeautomation.com/seqviz-logo.png"
alt="SeqViz"
style={{ height: "48px" }}
/>
Expand Down
2 changes: 1 addition & 1 deletion demo/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const path = require('path');
const nextConfig = {
reactStrictMode: true,
output: 'export',
basePath: '/seqviz',
// basePath: '/seqviz', // Removed for Amplify root deployment
images: {
unoptimized: true,
},
Expand Down
1 change: 0 additions & 1 deletion demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"private": true,
"scripts": {
"build": "next build",
"deploy": "npm update seqviz && npm run build && aws s3 sync ./out s3://lattice-tools-s3/seqviz --delete && aws cloudfront create-invalidation --distribution-id E3NMX6D92LFTAV --paths '/seqviz/*'",
"fix": "prettier ./lib/** ./pages/** --write && eslint lib --ext ts,tsx --fix",
"lint": "prettier ./lib/** --check && eslint lib --ext ts,tsx --quiet",
"start": "open http://localhost:3010/ && next dev -p 3010",
Expand Down
2 changes: 1 addition & 1 deletion demo/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function App({ Component, pageProps }: AppProps) {
<Head>
<title>SeqViz - by Lattice Automation</title>

<link rel="icon" href="/seqviz/favicon.ico" />
<link rel="icon" href="/favicon.ico" />
<meta name="Description" content="DNA Sequence Visualizer by Lattice Automation" />
<meta name="google" content="notranslate" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"unpkg": "dist/seqviz.min.js",
"scripts": {
"build": "rm -rf ./dist && webpack",
"demo": "cd demo && npm run deploy",
"fix": "prettier ./src/** --write && eslint src --ext ts,tsx --fix",
"lint": "prettier ./src/** --check && eslint src --ext ts,tsx --quiet",
"minor": "./release.sh minor",
Expand Down