Skip to content

Commit

Permalink
revert name change from last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
benmccann committed Oct 12, 2022
1 parent 25e5024 commit 4a9bde3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/adapter-netlify/index.js
Expand Up @@ -63,7 +63,7 @@ export default function ({ split = false, edge = edge_set_in_env_var } = {}) {
builder.copy('_headers', headers_file);
appendFileSync(
headers_file,
`\n\n/${builder.getAppDirectory()}/immutable/*\n cache-control: public\n cache-control: immutable\n cache-control: max-age=31536000\n`
`\n\n/${builder.getAppPath()}/immutable/*\n cache-control: public\n cache-control: immutable\n cache-control: max-age=31536000\n`
);

if (edge) {
Expand Down
2 changes: 1 addition & 1 deletion packages/adapter-vercel/index.js
Expand Up @@ -118,7 +118,7 @@ export default function ({ external = [], edge, split } = {}) {
...redirects[builder.config.kit.trailingSlash],
...prerendered_redirects,
{
src: `/${builder.getAppDirectory()}/.+`,
src: `/${builder.getAppPath()}/.+`,
headers: {
'cache-control': 'public, immutable, max-age=31536000'
}
Expand Down
2 changes: 1 addition & 1 deletion packages/kit/src/core/adapt/builder.js
Expand Up @@ -128,7 +128,7 @@ export function create_builder({ config, build_data, routes, prerendered, log })
return config.kit.files.assets;
},

getAppDirectory() {
getAppPath() {
return build_data.app_dir;
},

Expand Down
4 changes: 2 additions & 2 deletions packages/kit/types/index.d.ts
Expand Up @@ -85,8 +85,8 @@ export interface Builder {
getClientDirectory(): string;
getServerDirectory(): string;
getStaticDirectory(): string;
/** The application directory including any configured base path */
getAppDirectory(): string;
/** The application path including any configured base path */
getAppPath(): string;

/**
* @param dest the destination folder to which files should be copied
Expand Down

0 comments on commit 4a9bde3

Please sign in to comment.